データの件数を数える
class TestController < ApplicationController def index @test = Person.where('age >= 20').count end end
データの件数を数えるには、
と記入します。
上の例では、ageフィールドが20以上のデータの件数を数えています。
モデル.count
と記入します。
上の例では、ageフィールドが20以上のデータの件数を数えています。
class TestController < ApplicationController def index @test = Person.where('age >= 20').count end end